# Load necessary packages.
# Basic Data Analysis & Wrangling
library(tidyverse)
library(lubridate)
# Library for splitting the chinese words.
library(jiebaRD)
library(jiebaR)
# Library for generating word cloud.
library(wordcloud)
# Library for visualizing the 3d plot.
library(plotly)
I - Introduction
II - Data Preprocessing
Load datasets
dt_issues = read.csv("data/issues_data.csv", header=TRUE)
dt_star = read.csv("data/stargazers.csv", header=TRUE)
dt_user = read.csv("data/users_data.csv", header=TRUE)
Saniety Check
# Inspect the dataset by taking the first 10 rows of each dataset.
dt_issues %>% head(10)
dt_star %>% head(10)
dt_user %>% head(10)